home *** CD-ROM | disk | FTP | other *** search
/ CD Actual Thematic 7: Programming / CDAT7.iso / demos / VisualAge for Java 2.0 Entry / setup / data1.cab / ide-e / IDE / cache / 12EC906 (.txt) < prev    next >
Encoding:
Java Class File  |  1998-09-16  |  1.7 KB  |  44 lines

  1. package com.sun.java.swing.plaf.metal;
  2.  
  3. import com.sun.java.swing.JToolBar;
  4. import com.sun.java.swing.plaf.basic.BasicToolBarUI;
  5. import java.awt.Rectangle;
  6. import java.awt.event.MouseEvent;
  7.  
  8. class MetalToolBarUI$MetalDockingListener extends BasicToolBarUI.DockingListener {
  9.    // $FF: synthetic field
  10.    MetalToolBarUI this$0;
  11.    protected boolean pressedInBumps;
  12.  
  13.    // $FF: synthetic method
  14.    public MetalToolBarUI$MetalDockingListener(MetalToolBarUI this$0, JToolBar t) {
  15.       super(this$0, t);
  16.       this.this$0 = this$0;
  17.       this.pressedInBumps = false;
  18.    }
  19.  
  20.    public void mousePressed(MouseEvent e) {
  21.       super.mousePressed(e);
  22.       this.this$0.setDragOffset(e.getPoint());
  23.       this.pressedInBumps = false;
  24.       Rectangle bumpRect = new Rectangle();
  25.       if (super.toolBar.getSize().height <= super.toolBar.getSize().width) {
  26.          bumpRect.setBounds(0, 0, 14, super.toolBar.getSize().height);
  27.       } else {
  28.          bumpRect.setBounds(0, 0, super.toolBar.getSize().width, 14);
  29.       }
  30.  
  31.       if (bumpRect.contains(e.getPoint())) {
  32.          this.pressedInBumps = true;
  33.       }
  34.  
  35.    }
  36.  
  37.    public void mouseDragged(MouseEvent e) {
  38.       if (this.pressedInBumps) {
  39.          super.mouseDragged(e);
  40.       }
  41.  
  42.    }
  43. }
  44.